home *** CD-ROM | disk | FTP | other *** search
/ Cracking 1 / Cracking I..iso / Tools / Ostatní / aPLib v0.26b / src / c / apdepack.h < prev   
Encoding:
C/C++ Source or Header  |  2001-12-15  |  505 b   |  26 lines

  1. /*
  2.  * aPLib compression library  -  the smaller the better :)
  3.  *
  4.  * C depacker, header file
  5.  *
  6.  * Copyright (c) 1998-2000 by Joergen Ibsen / Jibz
  7.  * All Rights Reserved
  8.  */
  9.  
  10. #ifndef __APDEPACK_H_INCLUDED
  11. #define __APDEPACK_H_INCLUDED
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. /* function prototype */
  18. unsigned int aP_depack(unsigned char *source,
  19.                        unsigned char *destination);
  20.  
  21. #ifdef __cplusplus
  22. } /* extern "C" */
  23. #endif
  24.  
  25. #endif /* __APDEPACK_H_INCLUDED */
  26.